home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club (Business) 1998 January / Software of the Month Club - Business Shareware (Volume 245) (January 1998).iso / dos / utility / see / examples.bat < prev    next >
DOS Batch File  |  1996-07-18  |  533b  |  29 lines

  1.     @ECHO OFF
  2.     IF (%3) == () START
  3.  
  4. :AGAIN
  5.     PSMENU_D START EXAMPLE2 15%1
  6.     IF ERRORLEVEL 10 GOTO QUIT
  7.     IF ERRORLEVEL  5 GOTO DEMO
  8.     IF ERRORLEVEL  3 GOTO COMMAND
  9.     IF ERRORLEVEL  1 GOTO INFO
  10.  
  11. :INFO
  12.     SEE EXAMPLES.DOC /N!:: /F::X%2 /Q
  13.     GOTO AGAIN
  14.  
  15. :COMMAND
  16.     CLS
  17.     ECHO The command we will be using is:
  18.     ECHO  
  19.     ECHO SEE %3 %4 %5 %6 %7 %8 %9
  20.     GETKEY Press a key to continue... @
  21.     GOTO AGAIN
  22.  
  23. :DEMO
  24.     SEE %3 %4 %5 %6 %7 %8 %9
  25.     GOTO AGAIN
  26.  
  27. :QUIT
  28.     START @ EXAMPLES
  29.